home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / icontext.c < prev    next >
C/C++ Source or Header  |  1997-05-06  |  3KB  |  108 lines

  1. /* Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* icontext.c */
  20. /* Context state operations */
  21. #include "ghost.h"
  22. #include "gsstruct.h"        /* for gxalloc.h */
  23. #include "gxalloc.h"
  24. #include "igstate.h"
  25. #include "icontext.h"
  26. #include "dstack.h"
  27. #include "estack.h"
  28. #include "ostack.h"
  29. #include "store.h"
  30.  
  31. /*
  32.  * Eventually this will replace some of interp.c for single-context
  33.  * systems; right now it is used only in multi-context (DPS) systems.
  34.  ****** DO NOT TRY TO USE THIS FILE. ******
  35.  */
  36.  
  37. /* Define the initial stack sizes. */
  38. #define DSTACK_INITIAL 20
  39. #define ESTACK_INITIAL 250
  40. #define OSTACK_INITIAL 200
  41.  
  42. /* Per-context state stored in statics */
  43. extern ref ref_array_packing;
  44. extern ref ref_binary_object_format;
  45. extern ref user_names;
  46. extern long zrand_state;
  47.  
  48. /* Initialization procedures */
  49. void zrand_state_init(P1(long *));
  50.  
  51. /* Allocate the state of a context. */
  52. int
  53. context_state_alloc(gs_context_state_t *pcst, gs_ref_memory_t *mem)
  54. {    /****** NOT COMPLETE OR FUNCTIONAL ******/
  55.     /****** ALLOCATE & ref_stack_init EACH STACK ******/
  56.     /****** ALLOCATE GSTATE ******/
  57.     /****** WHAT TO DO ABOUT memory? ******/
  58.     make_false(&pcst->array_packing);
  59.     make_int(&pcst->binary_object_format, 0);
  60.     zrand_state_init(&pcst->rand_state);
  61.     pcst->usertime_total = 0;
  62.     pcst->keep_usertime = false;
  63.     /****** view clipping ******/
  64.     /****** user parameters ******/
  65.     /****** %stdin, %stdout ******/
  66.     return 0;
  67. }
  68.  
  69. /* Load the interpreter state from a context. */
  70. void
  71. context_state_load(const gs_context_state_t *pcst)
  72. {    d_stack = pcst->dstack;
  73.     e_stack = pcst->estack;
  74.     o_stack = pcst->ostack;
  75.     igs = pcst->pgs;
  76.     gs_imemory = pcst->memory;
  77.     ref_array_packing = pcst->array_packing;
  78.     ref_binary_object_format = pcst->binary_object_format;
  79.     zrand_state = pcst->rand_state;
  80. }
  81.  
  82. /* Store the interpreter state in a context. */
  83. void
  84. context_state_store(gs_context_state_t *pcst)
  85. {    pcst->dstack = d_stack;
  86.     pcst->estack = e_stack;
  87.     pcst->ostack = o_stack;
  88.     pcst->pgs = igs;
  89.     pcst->memory = gs_imemory;
  90.     pcst->array_packing = ref_array_packing;
  91.     pcst->binary_object_format = ref_binary_object_format;
  92.     pcst->rand_state = zrand_state;
  93. }
  94.  
  95. /* Free the state of a context. */
  96. void
  97. context_state_free(gs_context_state_t *pcst, gs_ref_memory_t *mem)
  98. {    /****** SEE alloc ABOVE ******/
  99.     { int i;
  100.       for ( i = 0; i < countof(pcst->memory.spaces.indexed); ++i )
  101.         if ( pcst->memory.spaces.indexed[i] != 0 &&
  102.          !--(pcst->memory.spaces.indexed[i]->num_contexts)
  103.            )
  104.           { /****** FREE MEMORY ******/
  105.           }
  106.     }
  107. }
  108.